home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / WIN_PRO / WTEK0593.ZIP;1 / SWITCH.ZIP / TEXTMAIN.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-08  |  890 b   |  26 lines

  1. /*------------------------------------------------------------------------*/
  2. /*                                                                        */
  3. /*  TEXTMAIN.CPP                                                          */
  4. /*                                                                        */
  5. /*  Main entry point for the TEXTWIN application.                         */
  6. /*                                                                        */
  7. /*------------------------------------------------------------------------*/
  8.  
  9. #include "textwin.h"
  10.  
  11. extern "C" int PASCAL WinMain( HINSTANCE inst, HINSTANCE, LPSTR, int show )
  12. {
  13.     TextWindow window;
  14.     window.Create( inst, show );
  15.  
  16.     MSG msg;
  17.     while( GetMessage( &msg, 0, 0, 0 ) )
  18.         {
  19.         TranslateMessage( &msg );
  20.         DispatchMessage( &msg );
  21.         }
  22.     return msg.wParam;
  23. }
  24.  
  25.  
  26.